home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 22 / PC Actual CD 22.iso / SHARE / prog / POVRAY / PCCS_INC.ZIP / KOM_PCCS.INC next >
Encoding:
Text File  |  1997-05-01  |  3.1 KB  |  85 lines

  1. // kom_pccs.inc  ver. 0.1.0 ---  my color include file for POV-Ray
  2. // A color include file for systematical color specification for POV-Ray
  3. //
  4. //   97/04/26    Copyright(C) by Komuro Hideki,  Tokyo,  Japan.
  5. //   email:  kom@super.win.or.jp
  6. //           http://www.win.or.jp/~a-kojima/indexe.html
  7. //
  8. //             ***************************************
  9. //             ***  This include file is FREEWARE  ***
  10. //             ***************************************
  11. //
  12. // Using this include file, you can specify colors with the combination of
  13. // the keywords, which consist of 13 Hues and 9 Tones for chromatic colors,
  14. // 3 Tones for achromatic color (gray).
  15. //
  16. // =======================================================================
  17. //
  18. // * ACHROMATIC colors
  19. //   WHITE (W),  BLACK (Bk)
  20. //
  21. //   3 tone keywords for Gray are ...
  22. //     light (lt),   medium (m),   dark (d)
  23. //
  24. // In order to specify "light gray", write script like below.
  25. // ( "lightGray", "ltGy", "lightGy", "ltGray", "lightGrey", "ltGrey" )
  26. // (  are all acceptable.                                            )
  27. //
  28. // (ex)  pigment{ color ltGy }
  29. //
  30. // * CHROMATIC colors
  31. //
  32. //   13 hue keywords are ...
  33. //
  34. //     Red               (R)
  35. //     ReddishOrange     (RO)
  36. //     Orange            (O)
  37. //     YellowishOrange   (YO)
  38. //     Yellow            (Y)
  39. //     YellowGreen       (YG)
  40. //     Green             (G)
  41. //     BlueGreen         (BG)
  42. //     GreenishBlue      (GB)
  43. //     Blue              (B)
  44. //     Violet            (V)
  45. //     Purple            (P)
  46. //     RedPurple         (RP)
  47. //
  48. //   9 tone keywords are ...
  49. //
  50. //     pale              (p)
  51. //     light             (lt)
  52. //     bright            (b)
  53. //     vivid             (v)
  54. //     deep              (dp)
  55. //     dark              (dk)
  56. //     dull              (d)
  57. //     lightgrayish      (ltg)      "lightgreyish" is also OK.
  58. //     grayish           (g)        "greyish" is also OK.
  59. //
  60. //
  61. // In order to specify "bright red", write script like below.
  62. // ("brightRed", "bR", "brightR", "bRed" are all acceptable.)
  63. //
  64. // (ex)  pigment{ color brightRed }
  65. //
  66. // =======================================================================
  67. // We can also use colors.inc with kom_pccs.inc at the same time.
  68. // There is no common color name among two files.
  69. // NOTE:
  70. //    Black is "BLACK" (or "Bk") in kom_pccs.inc, while "Black" in colors.inc.
  71. //    White is "WHITE"  (or "W") in kom_pccs.inc, while "White" in colors.inc.
  72. // =======================================================================
  73. // The idea of this include file are based on "Practical Color Co-ordinate
  74. // System (P.C.C.S.)" developed by Japan color research institute.
  75. // In Japan, P.C.C.S. is often used for art education e.t.c.
  76. // =======================================================================
  77. // I also made an include file of Munsell color system for POV-Ray, but
  78. // it is too large. So I'm wondering how to make it smaller.
  79. // If you are interested in it, please visit my homepage.
  80. // =======================================================================
  81.  
  82. #include "pccs_m.inc"
  83. #include "pccs_s.inc"
  84.  
  85.